Skip to main content
Version: 1.0.2

Request For Return Outbound

The ReturnRequest API enables to request for returning the outbound transaction payment.

Method: POST

{{URL}}/PLMASTER/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

ID

Mandatory

String

Unique ID of transaction

Example – "112940072"

description

Mandatory

String

Additional information of the transaction

Example – "test"

reasonCode

Mandatory

String

Code of the reason given to the transaction

Example – "CUST"

reason

Mandatory

String

Reason given to the transaction

Example – "Requested By Customer"


curl --location '{{URL}}/PLMASTER/jsonrpc' \
--header 'Content-Type: application/json' \
--data '{"ID":"112940072","description":"test","reasonCode":"CUST","reason":"Requested By Customer"}'

Request Body (Applicable for both FedNow and RTP)


{
"ID": "112940072",
"description": "test",
"reasonCode": "CUST",
"reason": "Requested By Customer"
}

Response: 200

Response Parameters
ParameterDescription

id

String

Unique identifier of the request

Example – "1"

result

Object

message

String

Response message

Example – "Transaction Returned Successfully"

Response Body (Applicable for both FedNow and RTP)


{
"id": "1",
"result": {
"message": "Transaction Returned Successfully"
}
}